home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / 24 aspnet applications / aspnetapplications / requestform.aspx < prev    next >
Encoding:
ASP.NET Web Form  |  2002-03-18  |  1.0 KB  |  25 lines

  1. <%@ Page Language="vb" AutoEventWireup="false" Codebehind="RequestForm.aspx.vb" Inherits="AspnetApplications.RequestForm" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  3. <HTML>
  4.     <HEAD>
  5.         <title>RequestForm</title>
  6.         <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
  7.         <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
  8.         <meta content="JavaScript" name="vs_defaultClientScript">
  9.         <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  10.     </HEAD>
  11.     <body>
  12.         <form id="Form1" method="post" runat="server">
  13.             <H1>Request object demo</H1>
  14.             <P>This page shows the values of the new properties of the Request object, such as 
  15.                 the Request.Url and Request.Browser properties.</P>
  16.             <P> </P>
  17.             <P><STRONG>URL information</STRONG></P>
  18.             <P><asp:literal id="litUri" runat="server"></asp:literal></P>
  19.             <P><STRONG>BrowserCapabilities information</STRONG></P>
  20.             <P>
  21.                 <asp:Literal id="litBrowser" runat="server"></asp:Literal></P>
  22.         </form>
  23.     </body>
  24. </HTML>
  25.